home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000317_news@columbia.edu _Mon Feb 19 14:16:22 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id OAA21227
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 19 Feb 2001 14:16:21 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA05803
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 19 Feb 2001 14:16:21 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id NAA13083
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 19 Feb 2001 13:50:31 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: interfacing to FANUC CNC controller
  14. Date: 19 Feb 2001 18:50:30 GMT
  15. Organization: Columbia University
  16. Message-ID: <96rptm$cop$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <IAdk6.289013$w35.47255953@news1.rdc1.nj.home.com>,
  20. dls2 <dlshearer@home.com> wrote:
  21. : "Frank da Cruz" <fdc@watsun.cc.columbia.edu> wrote:
  22. : ...
  23. : > So try this:
  24. : >
  25. : >   set xmit prompt 20  ; 20 is the ASCII (decimal) code for Ctrl-T.
  26. So did you try it?
  27.  
  28. : The dialogs for sending and receiving take the following forms:
  29. : http://www.amada.net/technote/tno001.htm
  30. That just shows the modem signal transitions.
  31.  
  32. : The default transmit prompt is set to 10, which is what I left it at,
  33. : when previously testing.  Since the dialogs do not seem to give
  34. : any indication of prompting being necessary, I believe, though I
  35. : have not yet checked, for sure, that the prompt should be set to
  36. : 0.  If Kermit expects prompting, and does not receive prompting,
  37. : will a text transfer, using XMIT, time out, after sending the first line
  38. : of text to be transmitted?
  39. The "prompt" is the character from the the receiver of the transmission
  40. that indicates it is ready for the next line.  Kermit uses 10 (linefeed)
  41. by default, for the customary case in which it sends <line><CR> and
  42. the receiver echoes back <line><CR><LF>, on the assumption that it might
  43. not be safe to send line n+1 before line n is finished echoing.
  44.  
  45. Your case obviously does not fit this model, so you'll need either
  46. choose a different prompt character, or disable the prompt mechanism
  47. altogether with "set transmit prompt 0".  You might also need to change
  48. some other SET TRANSMIT settings as well as communication settings.
  49. They are all described in the book, but I can't tell exactly what to
  50. do because I don't have access to your device.
  51.  
  52. - Frank